Código fuente de 'Convierte hexadecimal a entero.asp'

<html>

<head>
<title>Convierte hexadecimal a entero - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>

<body style="font-family: Arial; font-size: 11pt">
<p align="center"><b><font size="3">Convierte hexadecimal a entero</font>
</b></p><b>Ejemplos:<br></b>


<% 'Código ASP

Dim HEXNUMBER(3)
HEXNUMBER(0) = "14" ' 20
HEXNUMBER(1) = 19 ' 25
HEXNUMBER(2) = "aBc" ' 2748
HEXNUMBER(3) = "FF" ' 255
For I = 0 to 3
'As I said, one line!
  Response.Write hexnumber(I) & " (hexadecimal) --> (entero) " 
  response.write CInt("&H" & HEXNUMBER(i)) & "<br>"
Next

'The line again, is:
'CInt("&H" & <hex number>)
'<hex number>: (If not a variable or an integer,
'remember to add the quotes: "ABCDEF"
'CInt("&H" & "ABCDEF")

'Fin código ASP %>

</body></html>